home *** CD-ROM | disk | FTP | other *** search
/ Visual Basic Source Code / Visual Basic Source Code.iso / vbsource / listvi1a / apityp~1.bas < prev    next >
BASIC Source File  |  1997-12-10  |  171b  |  13 lines

  1. Attribute VB_Name = "APITYPE_RECT"
  2. Option Explicit
  3.  
  4. Public Type RECT
  5.  
  6.       Left As Long
  7.       Top As Long
  8.       Right As Long
  9.       Bottom As Long
  10.  
  11. End Type
  12.  
  13.